home *** CD-ROM | disk | FTP | other *** search
/ Plug-In Power Pack for Netscape Communicator / Plug-In Power Pack for Netscape Communicator.iso / plugins / dataviews / dvdraw / examples / testwin / testwin.h < prev   
Encoding:
C/C++ Source or Header  |  1997-05-19  |  759 b   |  31 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // TestWin.h : DataViews Rules DLL interface header file
  4. //
  5. /////////////////////////////////////////////////////////////////////////////
  6.  
  7. #ifndef TESTWIN_H
  8. #define TESTWIN_H
  9.  
  10. #include "Tfundecl.h"
  11. #include "dvinterface.h"
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // class CTestWinDll
  15.  
  16.  
  17. class CTestWinDll : public DVIUnknown
  18. {
  19. public :
  20.     CTestWinDll() {}
  21.     ~CTestWinDll() {}
  22.  
  23. public :
  24.     virtual void Release() = 0;
  25.     virtual int     DvTestWin(VIEW view, RECTANGLE *wvp, char *clut, CFrameWnd *parent) = 0;
  26.     virtual void GetIdInfo(CString& mfgName, CString& objName, CString& versionStr) = 0;
  27. };
  28.  
  29.  
  30. #endif // TESTWIN_H
  31.